/* =============================================================
   CODE-KOMMENTARE: style.css
   Zweck: Stylesheet für Layout, Farben, Abstände, Responsiveness und visuelle Wirkung.
   Die Kommentare erklären die CSS-Bereiche. Sie ändern das Design nicht.
============================================================= */

/* Reset: Entfernt Standardabstände und macht Größenberechnung einfacher. */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Globale Design-Variablen: Farben, Schatten, Rundungen und Grundwerte. */
:root {
  --bg: #09090d;
  --panel: rgba(255, 255, 255, 0.075);
  --panel-strong: rgba(255, 255, 255, 0.13);
  --text: #f6f2ea;
  --muted: #b9bac3;
  --line: rgba(255, 255, 255, 0.10);
  --line-strong: rgba(255, 255, 255, 0.18);
  --red: #e23934;
  --red-strong: #ff433e;
  --gold: #d3a65f;
  --radius: 22px;
  --shadow: 0 26px 80px rgba(0, 0, 0, 0.45);
}

/* Grundverhalten der Seite, z. B. sanftes Scrollen. */
html {
  scroll-behavior: smooth;
}

/* Gesamtes Seitenlayout: Schrift, Hintergrund und Grundabstände. */
body {
  min-height: 100vh;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 20% 0%, rgba(216, 181, 109, 0.18), transparent 30%),
    radial-gradient(circle at 80% 20%, rgba(216, 181, 109, 0.18), transparent 28%),
    linear-gradient(180deg, #151515, #070707 44%, #111);
  padding: 18px;
}

/* Standard-Styling für Links. */
a {
  color: inherit;
}

/* Header: feststehende Navigationsleiste mit Glas-/Premium-Effekt. */


/* Logo- und Markenbereich im Header. */








/* Schnellzugriffs-Icons neben der Navigation. */


/* Icon-Buttons: E-Mail, Rechtliches, FAQ und Warenkorb. */






/* Warenkorb-Styling: Artikel, Mengensteuerung und Preisübersicht. */








/* ===== Suchergebnisse ===== */
/* Suchergebnisse: wird über JavaScript ein- und ausgeblendet. */














/* Responsive Design: Anpassungen für kleinere Bildschirme. */








/* Hauptnavigation: Seitenlinks innerhalb des Projekts. */








/* Mobile Navigation: Burger-Button für kleine Bildschirme. */




.intro-space {
  height: clamp(38px, 7vw, 96px);
}

.hero-carousel {
  position: relative;
  height: clamp(480px, 68vw, 720px);
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid var(--line);
  background: #050507;
  box-shadow: var(--shadow);
}

.carousel-track,
/* Einzelner Slide im Karussell. */
.carousel-slide {
  position: absolute;
  inset: 0;
}

.carousel-slide {
  opacity: 0;
  visibility: hidden;
  transition: opacity 700ms ease, visibility 700ms ease;
}

.carousel-slide.is-active {
  opacity: 1;
  visibility: visible;
}

.carousel-slide img,
.carousel-slide video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  background: #050507;
}

.carousel-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.2) 55%, rgba(0, 0, 0, 0.46)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.68), transparent 45%);
  pointer-events: none;
}

.slide-content {
  position: absolute;
  z-index: 2;
  left: clamp(24px, 6vw, 76px);
  bottom: clamp(34px, 8vw, 92px);
  max-width: min(650px, calc(100% - 48px));
  padding: 26px 28px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(14px);
}

.slide-content h2 {
  margin-top: 12px;
  font-size: clamp(34px, 5vw, 70px);
  line-height: 0.96;
  letter-spacing: -0.06em;
}

.slide-content p:not(.kicker) {
  margin-top: 16px;
  color: rgba(246, 246, 247, 0.82);
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.55;
}

.carousel-control {
  position: absolute;
  z-index: 8;
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  color: white;
  background: rgba(0, 0, 0, 0.46);
  cursor: pointer;
  font-size: 42px;
  line-height: 1;
  transition: background 180ms ease, transform 180ms ease;
}
.timeline-section,
.gallery-section,
.project-section {
  padding: 86px clamp(18px, 5vw, 80px);
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 34px;
  text-align: center;
}
.carousel-control:hover {
  background: rgba(226, 57, 52, 0.88);
  transform: translateY(-50%) scale(1.04);
}

.carousel-prev {
  left: 22px;
}

.carousel-next {
  right: 22px;
}
.eyebrow {
  margin: 0;
  color: var(--gold);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  align-content: center;
}
.section-heading {
  max-width: 780px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading h2,
.project-card h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 62px);
  line-height: 1;
  letter-spacing: -0.055em;
}

.section-heading p:not(.eyebrow),
.project-card p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.7;
  font-size: 16px;
}
.carousel-dots {
  position: absolute;
  z-index: 9;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 0;
  padding: 3px 5px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(4, 5, 7, 0.58);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(12px);
}

.dot {
  position: relative;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  transition: width 180ms ease, transform 180ms ease;
}

.dot::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.48);
  transition: width 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.dot:hover::before {
  background: rgba(255, 255, 255, 0.78);
}

.dot:focus-visible {
  outline: 2px solid rgba(233, 195, 131, 0.95);
  outline-offset: 1px;
}

.dot.is-active {
  width: 36px;
  background: transparent;
}

.dot.is-active::before {
  width: 22px;
  background: var(--red-strong);
  box-shadow: 0 0 12px rgba(255, 67, 62, 0.42);
}

.content-preview {
  margin-top: 32px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--panel-strong);
}

.content-preview h2 {
  margin-top: 8px;
  font-size: clamp(26px, 3vw, 42px);
  letter-spacing: -0.04em;
}

.content-preview p:not(.kicker) {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.6;
}

@media (max-width: 720px) {
  body {
    padding: 10px;
  }

  

  

  

  

  

  

  

  

  .hero-carousel {
    height: 540px;
    border-radius: 24px;
  }

  .slide-content {
    left: 16px;
    right: 16px;
    bottom: 76px;
    padding: 20px;
  }

  .carousel-control {
    width: 44px;
    height: 44px;
    font-size: 32px;
  }
}
* {
  box-sizing: border-box;
}


/* ===== Hamburger-Menü: nur auf Mobilgeräten aktiv ===== */



















/* ===== Nav-Buttons: starker Glow + 3D-Effekt ===== */












/* ===== Projekt-Button: Gold ===== */






/* ===== Home-Button: Gold ===== */










/* ===== Newsletter-Button: eigene Animation ===== */












/* ===== Warenkorb-Icon: rote Puls- und Ping-Animation ===== */











/* ===== Zusätzliche professionelle Inhaltsbereiche ===== */
.info-section {
  padding: 72px clamp(18px, 5vw, 80px);
}

.info-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.info-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.info-card,
.text-panel {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--panel);
  padding: 28px;
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.22);
}

.info-card h3,
.text-panel h3 {
  margin: 0 0 12px;
  font-size: clamp(22px, 2vw, 30px);
  letter-spacing: -0.035em;
}

.info-card p,
.text-panel p,
.info-card li,
.text-panel li {
  color: var(--muted);
  line-height: 1.75;
  font-size: 16px;
}

.info-card ul,
.text-panel ul {
  margin: 16px 0 0 20px;
}

.info-card strong,
.text-panel strong {
  color: var(--text);
}

.source-list {
  width: min(980px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.source-list a {
  display: block;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,0.045);
  text-decoration: none;
  color: var(--text);
}

.source-list span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  line-height: 1.6;
}

.process-steps {
  counter-reset: step;
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.process-steps article {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--panel);
  padding: 28px;
}

.process-steps article::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  display: inline-block;
  margin-bottom: 18px;
  color: var(--gold);
  font-weight: 900;
  letter-spacing: 0.16em;
}

.process-steps h3 {
  margin-bottom: 10px;
  font-size: 22px;
}

.process-steps p {
  color: var(--muted);
  line-height: 1.7;
}

@media (max-width: 920px) {
  .info-grid,
  .info-grid.two,
  .process-steps {
    grid-template-columns: 1fr;
  }
}

/* =============================================================
   QUALITAETS-PATCH 10/10
   Semantik, Fokus, Navigation, Mobilansicht und Bewegungsreduktion.
   Die vorhandene Ordner- und Seitenstruktur bleibt unveraendert.
============================================================= */

:root {
  --quality-gold: #d7b45a;
  --quality-gold-light: #f4dda0;
  --quality-focus: #ffd86b;
  --quality-surface: rgba(15, 15, 18, 0.96);
}



.section-heading > h1,
.page-hero > h1,
.hero-copy > h1 {
  margin-top: 0;
  color: #ffffff;
  font-size: clamp(2rem, 4vw, 4.4rem);
  line-height: 1.03;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

/* Nur die aktuelle Seite wird optisch hervorgehoben. */




:where(a, button, input, select, textarea, [tabindex]):not([tabindex="-1"]):focus-visible {
  outline: 3px solid var(--quality-focus) !important;
  outline-offset: 3px !important;
}

button,
input,
select,
textarea {
  font: inherit;
}

button:disabled,
[aria-disabled="true"] {
  cursor: not-allowed !important;
  opacity: 0.55;
}

input:user-invalid,
select:user-invalid,
textarea:user-invalid {
  border-color: #ff8a8a !important;
  box-shadow: 0 0 0 3px rgba(255, 95, 95, 0.12) !important;
}

input:user-valid,
select:user-valid,
textarea:user-valid {
  border-color: rgba(126, 214, 157, 0.75) !important;
}

img,
video {
  max-width: 100%;
}

.footer-mini-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem 1rem;
  margin-top: 0.7rem;
}

.footer-mini-nav a {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.86rem;
  text-decoration: none;
}

.footer-mini-nav a:hover,
.footer-mini-nav a:focus-visible {
  color: var(--quality-gold-light);
}

.clean-list {
  display: grid;
  gap: 0.55rem;
  margin: 0.8rem 0 0;
  padding-left: 1.15rem;
}

.clean-list li::marker {
  color: var(--quality-gold);
}

.project-downloads {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.carousel-play-toggle {
  right: 4.8rem !important;
  left: auto !important;
  font-size: 1rem !important;
  letter-spacing: -0.15em;
}

.carousel-slide[aria-hidden="true"] {
  pointer-events: none;
}



@media (max-width: 640px) {
  

  

  

  

  

  .carousel-play-toggle {
    right: 4rem !important;
  }

  .project-downloads > * {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}

@keyframes quality-nav-in {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto !important;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  /* Der Newsletter-Goldpuls bleibt bewusst aktiv: reine Farb-/Schattenanimation
     ohne Bewegung, daher unkritisch fuer reduzierte Bewegung. */
  .main-nav a[href^="Newsletter.html"],
  .main-nav a[href^="Newsletter.html"].nav-active {
    animation-duration: 2.4s !important;
    animation-iteration-count: infinite !important;
  }

  video[autoplay] {
    animation: none !important;
  }
}




/* =============================================================
   VISUAL-PATCH: VOLLE BILDER + ORIGINALER PREMIUM-GLOW
   Stellt die Leuchteffekte der Referenz-ZIP wieder her, ohne
   Navigation, Responsivitaet oder Barrierefreiheit zu entfernen.
============================================================= */

/* Startseite: komplette Bilder, Video weiterhin formatfuellend. */
.hero-carousel {
  height: clamp(390px, 44vw, 610px);
  background:
    radial-gradient(circle at 50% 48%, rgba(216, 181, 109, 0.10), transparent 42%),
    #050507;
}
.carousel-slide[data-type="image"] img {
  object-fit: contain !important;
  object-position: center center !important;
  transform: none !important;
}
.carousel-slide[data-type="video"] video {
  object-fit: cover !important;
  object-position: center center !important;
}
@media (max-width: 720px) {
  .hero-carousel {
    height: clamp(270px, 82vw, 340px) !important;
  }
}

/* Mobile Karussell-Steuerung: Pfeile bleiben vertikal zentriert (wie am Motiv). */


/* =============================================================
   FIRST-CLASS RELEASE 2.7
   Ruhiges Premium-Design, klare Navigation, volle Bilder,
   konsistente Software-Ergonomie und stabile Responsivitaet.
============================================================= */
:root {
  --fc-bg: #08090b;
  --fc-bg-soft: #101216;
  --fc-panel: rgba(18, 20, 24, 0.86);
  --fc-panel-solid: #14171c;
  --fc-line: rgba(255, 255, 255, 0.11);
  --fc-line-strong: rgba(216, 181, 109, 0.34);
  --fc-text: #f5f3ee;
  --fc-muted: #b8b8b5;
  --fc-gold: #d3a65f;
  --fc-gold-light: #f0cf91;
  --fc-red: #e23934;
  --fc-radius-lg: 30px;
  --fc-radius-md: 22px;
  --fc-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
}

html { scroll-padding-top: 112px; }
body {
  color: var(--fc-text);
  background:
    radial-gradient(circle at 12% 8%, rgba(211,166,95,.07), transparent 27rem),
    radial-gradient(circle at 88% 32%, rgba(226,57,52,.045), transparent 24rem),
    var(--fc-bg);
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .20;
  background-image: linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}







/* Originale Navigationslogik der Ausgangs-ZIP, technisch bereinigt. */




















.section-heading { max-width: 820px; }
.section-heading .eyebrow,
.page-hero .kicker,
.hero-copy .eyebrow { color: var(--fc-gold-light); }
.section-heading h1,
.section-heading h2,
.page-hero h1,
.hero-copy h1 { text-wrap: balance; }
.section-heading p,
.hero-copy p:not(.eyebrow),
.page-hero p { max-width: 72ch; color: var(--fc-muted); }

.info-card,
.text-panel,
.summary-card,
.tech-panel,
.gallery-card,
.project-card,
.legal-grid article,
.confirmation-card,
.newsletter-card,
.feature-card:not(.is-photo),
.product-card,
.cart-summary,
.checkout-form-card,
.order-summary-card {
  border-color: var(--fc-line) !important;
  background: linear-gradient(145deg, rgba(23,25,30,.94), rgba(13,15,18,.9)) !important;
  box-shadow: var(--fc-shadow) !important;
}

.info-card,
.text-panel,
.tech-panel,
.gallery-card,
.product-card,
.legal-grid article {
  transition: transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}
.info-card:hover,
.text-panel:hover,
.gallery-card:hover,
.product-card:hover,
.legal-grid article:hover {
  transform: translateY(-4px);
  border-color: var(--fc-line-strong) !important;
  box-shadow: 0 34px 86px rgba(0,0,0,.42), 0 0 0 1px rgba(211,166,95,.08) !important;
}

/* Bilder bleiben vollstaendig sichtbar und werden wie auf einer dunklen Studioflaeche praesentiert. */
.car-frame,
.gallery-card,
.product-media {
  background: radial-gradient(circle at 50% 58%, rgba(255,255,255,.10), transparent 45%), #090a0d !important;
}
.car-frame img,
.gallery-card img,
.timeline-tab img,
.product-media img,
.cart-item img {
  object-fit: contain !important;
  object-position: center center !important;
  transform: none !important;
}
.car-frame img,
.gallery-card img { width: 100% !important; height: auto !important; aspect-ratio: 3 / 1 !important; }
.car-frame { overflow: hidden; }
.model-panel { margin: 18px auto 0 !important; }
.timeline-tab img { background: #0c0e11; padding: 3px; }
.product-media { display: grid; place-items: center; min-height: 220px; padding: 12px; }
.product-media img { width: 100%; height: 100%; }
.cart-item img { background: #0c0e11; padding: 6px; }

.hero-carousel {
  background: radial-gradient(circle at 50% 48%, rgba(216,181,109,.10), transparent 42%), #050507 !important;
}
.carousel-slide[data-type="image"] img { object-fit: contain !important; object-position: center !important; }
.carousel-slide[data-type="video"] video { object-fit: cover !important; object-position: center !important; }

/* Neue First-Class-Komponenten. */
.journey-card,
.dna-card,
.quality-card,
.decision-card,
.engineering-card,
.edition-card {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  padding: 28px;
  border: 1px solid var(--fc-line);
  border-radius: var(--fc-radius-md);
  background: linear-gradient(145deg, rgba(24,27,32,.92), rgba(12,14,17,.94));
  box-shadow: 0 22px 60px rgba(0,0,0,.28);
}
.journey-card::before,
.dna-card::before,
.quality-card::before,
.decision-card::before,
.engineering-card::before,
.edition-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(var(--fc-gold-light), transparent);
}
.journey-card h3,
.dna-card h3,
.quality-card h3,
.decision-card h3,
.engineering-card h3,
.edition-card h3 { margin: 0 0 12px; font-size: 24px; }
.journey-card p,
.dna-card p,
.quality-card p,
.decision-card p,
.engineering-card p,
.edition-card p { color: var(--fc-muted); line-height: 1.7; }
.journey-card a { display: inline-flex; margin-top: 16px; color: var(--fc-gold-light); font-weight: 800; text-decoration: none; }
.journey-card a:hover { text-decoration: underline; text-underline-offset: 4px; }

.heritage-band {
  width: min(1180px,100%);
  margin: 0 auto;
  padding: 30px;
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 28px;
  align-items: center;
  border: 1px solid var(--fc-line-strong);
  border-radius: var(--fc-radius-lg);
  background: linear-gradient(120deg, rgba(211,166,95,.14), rgba(18,20,24,.90) 42%, rgba(226,57,52,.06));
}
.heritage-band strong { display:block; font-size: clamp(34px,5vw,70px); letter-spacing:-.055em; }
.heritage-band p { color:var(--fc-muted); line-height:1.75; }

.comparison-lab {
  width: min(1180px,100%);
  margin: 0 auto;
  padding: 30px;
  border: 1px solid var(--fc-line-strong);
  border-radius: var(--fc-radius-lg);
  background: linear-gradient(145deg, rgba(21,24,29,.96), rgba(10,12,15,.96));
  box-shadow: var(--fc-shadow);
}
.comparison-controls { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:18px; margin-bottom:22px; }
.comparison-controls label { color:var(--fc-muted); font-weight:700; }
.comparison-controls select {
  width:100%; margin-top:8px; min-height:48px; padding:0 14px;
  color:var(--fc-text); background:#0d0f13; border:1px solid var(--fc-line); border-radius:14px;
}
.comparison-results { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:18px; }
.comparison-card { padding:24px; border:1px solid var(--fc-line); border-radius:20px; background:rgba(255,255,255,.035); }
.comparison-card h3 { margin:0 0 4px; font-size:28px; }
.comparison-card .compare-kicker { color:var(--fc-gold-light); font-weight:800; }
.compare-facts { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:10px; margin:18px 0; }
.compare-facts div { padding:12px; border-radius:12px; background:rgba(255,255,255,.04); }
.compare-facts span { display:block; color:var(--fc-muted); font-size:12px; text-transform:uppercase; letter-spacing:.08em; }
.compare-facts strong { display:block; margin-top:4px; }
.score-row { display:grid; grid-template-columns:110px 1fr 28px; gap:10px; align-items:center; margin-top:10px; }
.score-row span { color:var(--fc-muted); font-size:13px; }
.score-track { height:8px; overflow:hidden; border-radius:999px; background:rgba(255,255,255,.08); }
.score-track i { display:block; height:100%; border-radius:inherit; background:linear-gradient(90deg,var(--fc-gold),var(--fc-gold-light)); }
.score-row b { font-size:13px; }

.editorial-quote {
  width:min(920px,100%); margin:0 auto; padding:34px;
  border-left:4px solid var(--fc-gold); border-radius:0 22px 22px 0;
  background:rgba(211,166,95,.07);
}
.editorial-quote blockquote { margin:0; font-size:clamp(24px,3.5vw,44px); line-height:1.22; letter-spacing:-.035em; }
.editorial-quote p { margin:14px 0 0; color:var(--fc-muted); }

.system-flow {
  width:min(1180px,100%); margin:0 auto; display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr)); gap:12px;
}
.system-flow article { position:relative; padding:24px; border:1px solid var(--fc-line); border-radius:18px; background:rgba(255,255,255,.035); }
.system-flow article:not(:last-child)::after { content:"→"; position:absolute; right:-12px; top:50%; transform:translate(50%,-50%); color:var(--fc-gold); font-size:22px; z-index:2; }
.system-flow strong { display:block; color:var(--fc-gold-light); margin-bottom:8px; }
.system-flow p { margin:0; color:var(--fc-muted); line-height:1.6; }

.release-badge { display:inline-flex; align-items:center; gap:8px; padding:8px 12px; border:1px solid rgba(211,166,95,.35); border-radius:999px; color:var(--fc-gold-light); background:rgba(211,166,95,.08); font-size:13px; font-weight:800; }
.release-badge::before { content:""; width:8px; height:8px; border-radius:50%; background:#68d391; box-shadow:0 0 12px rgba(104,211,145,.55); }

.site-footer,
footer:not(.site-footer) {
  margin-top: 72px;
  border-top: 1px solid var(--fc-line);
  background: #090b0e;
}
.footer-mini-nav a { color:var(--fc-muted); }
.footer-mini-nav a:hover { color:var(--fc-gold-light); }

/* Progressive Enhancement: Inhalte sind ohne JavaScript sichtbar. */
html:not(.js-ready) .pe-reveal { opacity:1 !important; transform:none !important; }
@media print { .pe-reveal { opacity:1 !important; transform:none !important; } }

@media (max-width: 980px) {
  .journey-grid,.dna-grid,.quality-grid,.decision-grid,.engineering-grid,.edition-grid { grid-template-columns:1fr 1fr; }
  .heritage-band { grid-template-columns:1fr; }
  .system-flow { grid-template-columns:1fr 1fr; }
  .system-flow article::after { display:none; }
}
@media (max-width: 720px) {
  html { scroll-padding-top:90px; }
  .journey-grid,.dna-grid,.quality-grid,.decision-grid,.engineering-grid,.edition-grid,.comparison-results,.comparison-controls,.system-flow { grid-template-columns:1fr; }
  .comparison-lab,.heritage-band { padding:22px; }
  .score-row { grid-template-columns:88px 1fr 24px; }
  .car-frame img,.gallery-card img { aspect-ratio:3/1 !important; }
  .model-panel { width:100% !important; }
  
}

/* ===== RELEASE 3.1: Schlanke Karussell-Navigation auf allen Geräten ===== */
@media (max-width: 720px) {
  .hero-carousel {
    height: clamp(240px, 74vw, 295px) !important;
    border-radius: 22px !important;
  }

  .carousel-control {
    width: 42px !important;
    height: 42px !important;
    font-size: 28px !important;
  }

  .carousel-dots {
    bottom: 10px;
    padding: 2px 4px;
  }

  .dot {
    width: 22px;
    height: 22px;
  }

  .dot.is-active {
    width: 32px;
  }

  .dot.is-active::before {
    width: 20px;
  }

  .slide-content {
    bottom: 54px !important;
  }
}
